home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / SNIP0492.ARJ / DO.C < prev    next >
C/C++ Source or Header  |  1991-12-27  |  341b  |  18 lines

  1. /*
  2. **  DO.C - a simple facility for specifying multiple commands
  3. */
  4.  
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7.  
  8. void main(int argc, char *argv[])
  9. {
  10.       if (2 > argc)
  11.       {
  12.             puts("Usage: DO \"DOS command 1\" \"DOS command 2\" ...");
  13.             return;
  14.       }
  15.       while (--argc)
  16.             system(*++argv);
  17. }
  18.